home *** CD-ROM | disk | FTP | other *** search
- on(press){
- clipx = getProperty("/clip", _X);
- clipy = getProperty("/clip", _Y);
- ballx = getProperty("/ball", _X);
- bally = getProperty("/ball", _Y);
- motionx = (clipx - ballx) / a;
- motiony = (clipy - bally) / a;
- n = "1";
- while(n < "10")
- {
- setProperty("../ball", _X, clipx - motionx);
- setProperty("../ball", _Y, clipy - motiony);
- n += "1";
- }
- }
-